home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Mesolore
/
Mesolore - Disc 1.iso
/
mac
/
data
/
help.dir
/
00002_Script_2
< prev
next >
Wrap
Text File
|
2001-01-26
|
499b
|
28 lines
on exitFrame
-- clearRolls
repeat with x = 10 to 19
if rollover(x) then
set the visible of sprite (x + 20) = true
else
set the visible of sprite (x + 20) = false
end if
end repeat
repeat with x in[40,41,42,43,44,45,46,47,48,49,50]
if rollover(x) then
roll x
else
unroll x
end if
end repeat
go the frame
end
on clearrolls
repeat with x = 30 to 39
set the visible of sprite x = False
end repeat
end